home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / database / arv134e.zip / NACHRICH.BAT < prev    next >
DOS Batch File  |  1994-12-05  |  956b  |  31 lines

  1. @echo off
  2. rem Please see ARV.DOK, option "nach_aufnahme" on how to use this
  3. rem sample batch file.
  4.  
  5. rem Hello.txt contains some text like:
  6. rem "Hi! I have just gotten the following files:"
  7.  
  8. rem End.txt says something like:
  9. rem "That's it. If you want any of these files, just tell me..."
  10.  
  11. rem my frontdoor (FIDO mailer) directory is C:\FD
  12. rem ARV's direcotry is C:\ARV
  13.  
  14. rem This command will append the files Hello.txt (by me)
  15. rem                                    Aufnahme.txt (by ARV)
  16. rem                                    End.txt (by me)
  17. rem
  18. rem to msg.txt.
  19.  
  20. copy c:\arv\hello.txt+c:\arv\aufnahme.txt+c:\arv\end.txt C:\fd\msg.txt
  21.  
  22. rem Now, the msg.txt file is sent to all my friends connected to the
  23. rem FIDO net.
  24. rem Of course, this may work with the internet, too.
  25.  
  26. C:\fd\xr TEXT "Dirks new files" 2:242/303.13 /t C:\fd\msg.txt /f
  27. C:\fd\xr TEXT "Dirks new files" 2:242/303.14 /t C:\fd\msg.txt /f
  28. ...
  29. del C:\fd\msg.txt
  30.  
  31.